Git: Difference between revisions
From charlesreid1
No edit summary |
No edit summary |
||
| Line 17: | Line 17: | ||
[[Category:Git]] | [[Category:Git]] | ||
===quick ref=== | |||
the thing we always come here for: | |||
<pre> | |||
git branch new-feature | |||
git reset --hard HEAD~1 | |||
git checkout new-feature | |||
</pre> | |||
Revision as of 19:05, 18 July 2018
A curated list that will one day soon become git-awesome: Git Resources
Notes on my most common git operations: Git Operations
Using Git to deploy static web content: Git Deployment
Syncing a fork: Git/Sync a Fork
Deleting a remote branch: Git/Delete Remote Branch
Tags: Git/Tags
Submodules: Git/Submodules
Notes on teaching git: Git/Software Carpentry
quick ref
the thing we always come here for:
git branch new-feature git reset --hard HEAD~1 git checkout new-feature