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

    Thus after making any changes to the working tree, and before running the commit command, you must use the add command to add any new or modified files to the index. This command can …

  2. Git - git-remote Documentation

    Add a remote named <name> for the repository at <URL>. The command git fetch <name> can then be used to create and update remote-tracking branches <name>/<branch>.

  3. Git - git-add Documentation

    $ git add git-*.sh Comme cet exemple laisse le shell réaliser l’expansion de l’astérisque (c’est-à-dire que vous listez explicitement les fichiers du répertoire), il ne traite pas subdir/git-foo.sh .

  4. Git - gitignore Documentation

    The underlying Git plumbing tools, such as git ls-files and git read-tree, read gitignore patterns specified by command-line options, or from files specified by command-line options. Higher …

  5. Git - git-submodule Documentation

    You can then customize the submodule clone URLs in .git/config for your local setup and proceed to git submodule update; you can also just use git submodule update --init without the explicit …

  6. Git - git-worktree Documentation

    In its simplest form, git worktree add <path> automatically creates a new branch whose name is the final component of <path>, which is convenient if you plan to work on a new topic. For …

  7. Git - Submodules

    To add a new submodule you use the git submodule add command with the absolute or relative URL of the project you would like to start tracking. In this example, we’ll add a library called …

  8. Git - Git Aliases

    Git doesn’t automatically infer your command if you type it in partially. If you don’t want to type the entire text of each of the Git commands, you can easily set up an alias for each command …

  9. Git - gitattributes Documentation

    If a long running process filter is used in place of clean and/or smudge filters, then Git can process all blobs with a single filter command invocation for the entire life of a single Git command, for …

  10. Git - git-push Documentation

    Push: lines are used by git push and Pull: lines are used by git pull and git fetch. Multiple Push: and Pull: lines may be specified for additional branch mappings. Named file in …

Refresh