Revert "Update README.txt"

This reverts commit 83d0ae00fe.
This commit is contained in:
Becca 2015-09-14 16:54:10 -05:00
parent 83d0ae00fe
commit f710bc5f91

View file

@ -2,26 +2,24 @@ I changed the name of the repo. To make everything pretty, rename your working f
git remote set-url origin https://github.tamu.edu/USERNAME/DMS.git git remote set-url origin https://github.tamu.edu/USERNAME/DMS.git
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. 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.
When beginning to work: When beginning to work:
git checkout beccadev git checkout beccadev
This switches to your development branch. At any time, just type git status to see whats going on. This switches to your development branch. At any time, just type git status to see whats going on.
Before doing anything, type: Before doing anything, type:
git merge beccadev master git merge beccadev master
git push git push
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) 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. 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”. Commit changes with git commit m “something descriptive”.
If everything works the way youve anticipated and it compiles properly and completely done, return to master with git checkout master and merge: If everything works the way youve anticipated and it compiles properly and completely done, return to master with git checkout master and merge:
git merge master beccadev git merge master beccadev
Type git push and youre done. Type git push and youre done.
MAKE SURE TO: commit often and delete your .o file before pushing.