-
Caveats
28 Feb 2016
If this isn’t the only site you’ve looked at for assistance learning git, you may have come across advice that…
-
Conclusion
27 Feb 2016
This guide does not claim, not wants to be, an exhaustive guide to git. It attempts to give a basic…
-
The inner cycle
8 Feb 2016
While actively writing code and experimenting with possible solutions, it’s crucial to be constantly committing code to your local git…
-
The middle cycle
22 Jan 2016
The middle cycle helps reduce the complexity of your final commit. This daily task is to pull the latest changes…
-
The outer cycle
5 Jan 2016
The outer most cycle represents a full development task loop beginning with getting the latest code from the origin repo;…
-
Setup: the origin repo
19 Dec 2015
When beginning to collaborate on a coding project using git, there are a couple of steps to create a local…
-
Cycles: the introduction
2 Dec 2015
There are three development activities that cycle repeatedly within each other. They can be done as often as you like…
-
Never, EVER, push to master
15 Nov 2015
Every repo, after an initial commit, starts by default with one branch and that is named master. It’s the branch…
-
branch off, commit, and merge back
29 Oct 2015
Once your changes have been carefully reviewed and staged, they’re ready to be committed to the active branch. Include a…
-
review with status, diff and log
12 Oct 2015
Once you have staged all the changes you want to make (see add, remove and reset), you’re ready to commit…