Git: Difference between revisions
m (→Learning Git) |
|||
Line 27: | Line 27: | ||
* <code>git log -p filename > changelog</code> stores the history of changes to file <code>filename</code> into the file <code>changelog</code>. | * <code>git log -p filename > changelog</code> stores the history of changes to file <code>filename</code> into the file <code>changelog</code>. | ||
* <code>git diff file.name > file.diff</code> using the <code>.diff</code> extension tells vim (and, presumably, other text editors) to use appropriate syntax colouring. This is useful for reviewing the changes in a file, particularly when the changes are numerous. |
Revision as of 09:33, 23 August 2019
Git (Version Control Software)
- What is Git and why Git?
- Randy LeVeque's Intro to Git Slides
- GitHub (wealth of open source code repositories managed by Git)
- Download Git
- Pro Git book
Learning Git
GitHub as a nice set of tools for learning Git, which can be found here. These include some practical components, general documentation and cheat-sheets. If you're new to git, this is a great way to get introduced to the ideas.
GitLab has also worked on putting together a user-friendly introduction to git.
GitLab Group
The Fluids Lab has a group on the uWaterloo GitLab server. It can be found here. If you don't have access, click the request access button and someone will approve you. By sharing repositories with the group, you can make them immediately available to everyone else in the group, making it a very efficient way to share code with other lab members. This is also a nice way to help make sure that, after you graduate, your code doesn't vanish with you, and future generations can continue to use the tools that you built.
Useful Snippets
git log -p filename > changelog
stores the history of changes to filefilename
into the filechangelog
.git diff file.name > file.diff
using the.diff
extension tells vim (and, presumably, other text editors) to use appropriate syntax colouring. This is useful for reviewing the changes in a file, particularly when the changes are numerous.