diff options
| author | Trenton Stark <[email protected]> | 2022-10-01 12:20:01 -0700 |
|---|---|---|
| committer | Trenton Stark <[email protected]> | 2022-10-01 12:20:01 -0700 |
| commit | 433cc24e4f7630458fb1013339f09f53efc068fe (patch) | |
| tree | 22d8da53ebe65d50b742cf6417c22bac89656b86 | |
| parent | Added a psuedo code text file (diff) | |
| download | cst116-lab0-starktre-433cc24e4f7630458fb1013339f09f53efc068fe.tar.xz cst116-lab0-starktre-433cc24e4f7630458fb1013339f09f53efc068fe.zip | |
Added a checklist describing how to push projects
| -rw-r--r-- | CST116-BlankConsole/CST116-BlankConsole.vcxproj | 1 | ||||
| -rw-r--r-- | CST116-BlankConsole/CST116-BlankConsole.vcxproj.filters | 3 | ||||
| -rw-r--r-- | CST116-BlankConsole/checklist.txt | 7 |
3 files changed, 11 insertions, 0 deletions
diff --git a/CST116-BlankConsole/CST116-BlankConsole.vcxproj b/CST116-BlankConsole/CST116-BlankConsole.vcxproj index 4a259b6..6d27d42 100644 --- a/CST116-BlankConsole/CST116-BlankConsole.vcxproj +++ b/CST116-BlankConsole/CST116-BlankConsole.vcxproj @@ -130,6 +130,7 @@ <ClCompile Include="CST116-BlankConsole.cpp" />
</ItemGroup>
<ItemGroup>
+ <Text Include="checklist.txt" />
<Text Include="cst116-lab0-starktre.txt" />
<Text Include="cst116-lab0-starktre-psuedocode.txt" />
</ItemGroup>
diff --git a/CST116-BlankConsole/CST116-BlankConsole.vcxproj.filters b/CST116-BlankConsole/CST116-BlankConsole.vcxproj.filters index 4db4120..bbb3da3 100644 --- a/CST116-BlankConsole/CST116-BlankConsole.vcxproj.filters +++ b/CST116-BlankConsole/CST116-BlankConsole.vcxproj.filters @@ -26,5 +26,8 @@ <Text Include="cst116-lab0-starktre-psuedocode.txt">
<Filter>Source Files</Filter>
</Text>
+ <Text Include="checklist.txt">
+ <Filter>Source Files</Filter>
+ </Text>
</ItemGroup>
</Project>
\ No newline at end of file diff --git a/CST116-BlankConsole/checklist.txt b/CST116-BlankConsole/checklist.txt new file mode 100644 index 0000000..0743428 --- /dev/null +++ b/CST116-BlankConsole/checklist.txt @@ -0,0 +1,7 @@ +GitHub pushing checklist: + +1. Make local changes to the project in visual studio +2. Go to Git Changes and check all of the files you want to commit to be changed +3. Make a commit comment that describes what changes you are making with this commit +4. Press Commit Staged +5. Press push, this will push the changes to the local repository into the cloud repository
\ No newline at end of file |