diff options
| author | Andrei Florea <[email protected]> | 2022-10-01 12:26:57 -0700 |
|---|---|---|
| committer | Andrei Florea <[email protected]> | 2022-10-01 12:26:57 -0700 |
| commit | d87ca46c120a88900670df1cf99e09b7690f32fa (patch) | |
| tree | 45fe5016eea920a7c21806aeae0e9095eb70eac4 | |
| parent | Created pseudo-code text file and added pseudo-code to it (diff) | |
| download | cst116-lab0-florea-d87ca46c120a88900670df1cf99e09b7690f32fa.tar.xz cst116-lab0-florea-d87ca46c120a88900670df1cf99e09b7690f32fa.zip | |
Adding checklist.txt describing my steps to push
| -rw-r--r-- | CST116-BlankConsole/checklist.txt | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/CST116-BlankConsole/checklist.txt b/CST116-BlankConsole/checklist.txt new file mode 100644 index 0000000..e2f5ee4 --- /dev/null +++ b/CST116-BlankConsole/checklist.txt @@ -0,0 +1,8 @@ +Note: I am not using Visual Studio, I am on a Macbook, so my methods of commiting and pushing are a little bit different. + +1. Open up Mac Terminal and find the directory of the local repository +2. In the Terminal, type "git status" to see the current changes that are being awaited to be commited +3. In the Terminal, type "git add ." to add all the changes or type "git add [filename]" to add certain files +4. In the Terminal, type "git commit -m "[message about this commit]" to commit the changes to my local repository +5. In the Terminal, if I have cloned and connected my Github account, type "git push" to push my local changes to the remote repository +on GitHub
\ No newline at end of file |