Last active
July 12, 2018 13:43
-
-
Save cromwellryan/74c79598f9e0f2d5fe38 to your computer and use it in GitHub Desktop.
Code for Git-Poooosh post
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$> git merge --ff-only fancy-feature-branch | |
Updating 020fbbd..0d154e9 | |
Fast-forward | |
README.md | 2 ++ | |
1 file changed, 2 insertions(+) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$> git push && git push origin :fancy-feature-branch && git branch -d fancy-feature-branch | |
Total 0 (delta 0), reused 0 (delta 0) | |
To [email protected]:cromwellryan/dotfiles | |
020fbbd..0d154e9 master -> master | |
To [email protected]:cromwellryan/dotfiles | |
- [deleted] fancy-feature-branch | |
Deleted branch fancy-feature-branch (was 0d154e9). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$> gpp fancy-feature-branch | |
Total 0 (delta 0), reused 0 (delta 0) | |
To [email protected]:cromwellryan/dotfiles | |
020fbbd..0d154e9 master -> master | |
To [email protected]:cromwellryan/dotfiles | |
- [deleted] fancy-feature-branch | |
Deleted branch fancy-feature-branch (was 0d154e9). |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment