# Grab some GIT stuff
git clone <git_reference>
# Possible GIT workflow. One person team. Master branch.
git pull <git_reference>
git add <filesystem object>
git commit -m 'Comment here' <filesystem object>
git push <git_reference>
# See what is different
git diff
Wednesday, March 19, 2008
Monday, March 17, 2008
Some Handy CVS Commands
# Checkout a Module
cvs co <module>
# Checkout a Module from a given branch, MY_BRANCH_TAG
cvs co -rMY_BRANCH_TAG <module>
# Display log associated with a file
cvs log <file>
# Update the Module with any new code committed
cvs update <module>
# Add a new binary file
cvs add -kb <binary_file>
cvs commit
# Review list of files that have been modified in your diretory
cvs -qn up
cvs co <module>
# Checkout a Module from a given branch, MY_BRANCH_TAG
cvs co -rMY_BRANCH_TAG <module>
# Display log associated with a file
cvs log <file>
# Update the Module with any new code committed
cvs update <module>
# Add a new binary file
cvs add -kb <binary_file>
cvs commit
# Review list of files that have been modified in your diretory
cvs -qn up
Monday, March 03, 2008
Subscribe to:
Posts (Atom)