About 400 results
Open links in new tab
  1. Git - git-add Documentation

    By default, git add will warn when adding an embedded repository to the index without using git submodule add to create an entry in .gitmodules. This option will suppress the warning (e.g., if you …

  2. Git - Basic Snapshotting

    There we also demonstrate how to use the -a flag to skip the git add step in daily workflows and how to use the -m flag to pass a commit message in on the command line instead of firing up an editor.

  3. Git - git-commit Documentation

    Instead of staging files after each individual change, you can tell git commit to notice the changes to the files whose contents are tracked in your working tree and do corresponding git add and git rm for you.

  4. Git - git Documentation

    $GIT_SSH_COMMAND takes precedence over $GIT_SSH, and is interpreted by the shell, which allows additional arguments to be included. $GIT_SSH on the other hand must be just the path to a …

  5. Git - git-push Documentation

    Various commands, including git checkout and git status, will show you how many commits have been added to your current branch and the upstream since you forked from it, for example "Your branch …

  6. Git - git-submodule Documentation

    When running add, allow adding an otherwise ignored submodule path. This option is also used to bypass a check that the submodule’s name is not already in use.

  7. Git - Branching and Merging

    The git branch command is actually something of a branch management tool. It can list the branches you have, create a new branch, delete branches and rename branches.

  8. Git - git-reset Documentation

    You can use git reset to rewind history without changing the contents of your local files, and then successively use git add -p to interactively select which hunks to include into each commit, using git …

  9. Git - git-merge Documentation

    The merge mechanism (git merge and git pull commands) allows the backend merge strategies to be chosen with -s option. Some strategies can also take their own options, which can be passed by …

  10. Git - git-tag Documentation

    If you have imported some changes from another VCS and would like to add tags for major releases of your work, it is useful to be able to specify the date to embed inside of the tag object; such data in …