Updated the warning messages, and added warnings for two more commands (`checkout --` and `stash clear`). The list is now: $ git rebase $ git reset --hard $ git clean -f $ git gc --prune=now --aggressive $ git push -f <branch> $ git push remote [+/:]<branch> $ git branch -D $ git checkout [-p] [<tree-ish>] -- <path> $ git stash clear Looking forward to your comments. Thanks and regards, Sidhant Sharma --- $ ggit rebase [WARNING] You are about to rebase your commits in $TOPIC_BRANCH onto the $BASE_BRANCH, which will essentially replay the work done in $TOPIC_BRANCH since last merge onto $BASE_BRANCH. For instance, assume the following history exists and the current branch is master: o---o---A---B master \ X---Y topic After rebasing, the history would be: o---o---A---B master \ X'---Y' topic where X' and Y' are the commits making changes identical to those made by X and Y respectively. Rebasing is not usually problematic except in cases when you are rebasing commits that exist outside your repository (such as on a remote or on someone else's computer). $ ggit reset --hard Resetting to <destination-commit-hash> [WARNING] You are about to hard reset the current HEAD ($CURRENT_BRANCH) to a previous commit in history, possibly in another branch. This will discard all changes make thereafter. For instance, assume the following history exists and the current branch is master: o---o---A---B---C---D---E master After resetting 3 commits: o---o---A---B master The commits C, D and E and the changes made by them will be lost. Note that if you make commits on top of B, you would have rewritten the history and would have trouble restoring it easily. You can undo this action by resetting the HEAD to the last commit you were on, which can be seen by running `git reflog`. The first entry (HEAD{1}) points to the current HEAD location, second entry (HEAD{1}) points to the last position of your HEAD and so on. If you want to reset while retaining the changes made since, use --soft instead of --hard. This will reset without discarding the changes made in the previous commits. $ ggit push --force Pushing changes to $REMOTE/$BRANCH [WARNING] You are about to purge commits from the $REMOTE/$BRANCH branch and overwrite it's history to match yours. For instance, assume the following history exists where 'origin' is a configured remote and the current branch is master: o---o---o---A---B origin/master \ X---Y---Z your master After force push: o---o---o---X---Y---Z origin/master and your master Commit A and B will be gone. If other people have worked on top of A or B then they won't be able to merge their changes easily. To revert this, you would have to force push from a computer that has not yet pulled the changes you pushed and still has commits A and B as they were in origin/master previously. $ ggit push <remote> :<branch> ( ggit push <remote> --delete <branch> ) Pushing changes to $REMOTE/$BRANCH [WARNING] You are about delete a remote branch, which will result in the loss of commits made on that branch. This may cause a problem if other people are working on the branch you are deleting, as they would not be able to push or merge their changes easily. You can undo this by pushing the same branch to the remote with upstream flag, that is, by running: `$ ggit push -u $REMOTE $BRANCH` This will work unless you have deleted the branch locally as well. In that case, you need to restore it first. $ ggit push <remote> +<branch> ( or ggit push <remote> +<basebranch>:<targetbranch> ) Pushing changes to $REMOTE/$BRANCH [WARNING] You are attempting to push changes from $BASE_BRANCH to $TARGET_BRANCH while allowing non-fast-forward updates. This can leave unreferenced commits dangling in the origin repository. For instance, assume the following history exists where 'origin' is a configured remote and the current branch is master: o---o---A---B origin/master \ X---Y---Z your master State after forced push: o---o---A---B (unnamed branch) \ X---Y---Z origin/master and your master Commits A and B would no longer belong to a branch with a symbolic name, and so would be unreachable. Also, people who have based their work on A or B would have to either merge or rebase after you have pushed. If you wish to keep both the changesets (A,B and X,Y,Z), you may want to use `merge` or `rebase`. $ ggit branch -D ( or ggit branch -d -f ) Deleting branch $TARGET_BRANCH [WARNING] You are about to force delete the $TARGET_BRANCH branch. This will cause git to delete the branch even if it has not been merged, which may result in loss of commits. Unless you are confident the branch has been merged, use `-d` or `--delete` without `--force` which will warn you if the branch has not been merged. You can restore a forcefully deleted branch by running: `$ git branch <branch-name> <sha1>` where <branch-name> is the name of the branch you wish to restore and <sha1> is the last commit made to the branch you want to restore. You can find this information by running `git reflog`. To undo deletion of this branch, you can run: `$ ggit branch $TARGET_BRANCH $LAST_COMMIT_SHA` $ ggit clean -f [<path>] Cleaning <path> [WARNING] You are about to clean <path>, which will delete all files and directories at the given path which are not tracked by git. Note that it would not be possible to revert this action, and all files not in present in the index will be lost permanently. If you only wish to see what will be deleted on running `ggit clean`, use the `-n` or `--dry-run` option. $ ggit gc --prune=now --aggressive ( ggit gc --prune=all --aggressive) Running garbage collection [WARNING] You are about to prune all objects, regardless of their age or reachability. The `--aggressive` flag tells git to aggressively optimize the repository at the cost of taking more time to complete the operation. By setting `--prune` option to `now` or `all`, you ask git to optimize all objects, and not just the unreachable ones. Unless the repository is quiescent, you will lose newly created objects that haven’t been anchored with the refs and end up corrupting your repository. It is also not possible to revert the actions taken by `git gc`. $ ggit checkout [-p] [<tree-ish>] -- <path> Discarding changes from working tree [WARNING] You are about to permanently discard the unstaged changes present in <path>. This will bring <path> to its state as stored in the index, or to the state at <tree-ish>. If you wish to see what changes will be discarded and/or choose which changes are will be discarded, use the `-p` or `--patch` flag. The actions made by this command cannot be undone. $ ggit rm [--cached] <file> Removing file(s): <file> [WARNING] You are about to remove files/directories from the git index. This will cause git to stop tracking them, as well as delete them from the local filesystem. Using the `--cached` flag will only remove them from the index and not the filesystem. If you only wish to see which files will be removed, use the `-n` or `--dry-run` flag. You can revert the effects of this command by either restoring the files manually and running `ggit add <file>` or by running `ggit reset --hard`. $ ggit stash clear Dropping all stashed states [WARNING] You are about to remove all the stashed states. Note that those states will then be subject to pruning, and may be impossible to recover. To view all stashes, use `ggit stash list`. To selectively drop stashes, use `ggit stash drop <stash>`. Accepting input Are you sure you want to continue? [Y/n] -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html