This repository has been archived on 2025-04-11. You can view files and clone it, but cannot push or open issues or pull requests.
dmspine64backup/README.txt

28 lines
1.3 KiB
Text
Raw Normal View History

2015-09-14 15:54:08 -05:00
I changed the name of the repo. To make everything pretty, rename your working folder, and type this line:
git remote set-url origin https://github.tamu.edu/USERNAME/DMS.git
2015-09-14 16:46:41 -05:00
I also set up development branches for each of us. I think this is the way were supposed to have it, but this is my first GitHub project so Im not at all positive.
2015-09-14 15:54:08 -05:00
When beginning to work:
git checkout beccadev
2015-09-14 16:46:41 -05:00
This switches to your development branch. At any time, just type git status to see whats going on.
2015-09-14 15:54:08 -05:00
Before doing anything, type:
git merge beccadev master
git push
2015-09-14 16:46:41 -05:00
This updates your branch with the master branch, and pushes the update to GitHub. There is probably definitely a better way to do this. (Im pretty sure you can use git clone somehow)
Dont forgot to use git add filename.txt to add any files you want saved to git. Or just use git add * to grab them all. For some reason its making me do this every time I edit anything, which is weird.
Commit changes with git commit m “something descriptive”.
2015-09-14 15:54:08 -05:00
2015-09-14 16:46:41 -05:00
If everything works the way youve anticipated and it compiles properly and completely done, return to master with git checkout master and merge:
2015-09-14 15:54:08 -05:00
git merge master beccadev
2015-09-14 16:46:41 -05:00
Type git push and youre done.
MAKE SURE TO: commit often and delete your .o file before pushing.
2015-09-14 15:54:08 -05:00