Git Product home page Git Product logo

git-fancy's Introduction

git-fancy

How to be fancy with git. I'll add to this as I encounter fanciness.

Table of Contents

Stage whitespace changes

$ git add -A
$ git diff --cached -w | git apply --cached -R

Add changes to previous commit

$ git commit -a --amend --no-edit

Stage changes one piece at a time

$ git add -p

Delete stale remote-tracking branches

Deletes all stale remote-tracking branches under <name>. These stale branches have already been removed from the remote repository referenced by <name>, but are still locally available in remotes/<name>.

$ git remote prune <name> [--dry-run]

Move your changes on master to another branch

If you've pushed all your code onto the master branch for whatever reason, but now you want to move it to a different branch (presumably to open a pull request against master). Here's what you do:

  • Case 1, you want master to be empty when you open your PR:
$ git checkout master
$ git checkout -b my-feature-branch
$ git branch -D master
$ git checkout --orphan master
$ git rm -rf .
$ git commit --allow-empty -m "empty base commit"
$ git checkout my-feature-branch
$ git rebase master
$ git push -f origin master
$ git push origin my-feature-branch
  • Case 2: you want master to be at a particular git hash when you open your PR:
$ git checkout master
$ git checkout -b my-feature-branch
$ git branch -D master
$ git checkout my-git-hash-or-branch-name
$ git checkout -b master
$ git checkout my-feature-branch
$ git rebase master
$ git push -f origin master
$ git push origin my-feature-branch

TODO: You can also accomplish this with cherry-picking and reseting.

git-fancy's People

Contributors

aareano avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.