2
0
mirror of https://github.com/chubin/cheat.sheets synced 2024-11-03 15:40:17 +00:00
cheat.sheets/sheets/git-add
2018-07-14 20:41:18 +00:00

35 lines
1011 B
Plaintext

# git add
# Adds changed files to the index.
# Add a file to the index:
git add path/to/file
# Add all files (tracked and untracked):
git add -A
# Only add already tracked files:
git add -u
# Also add ignored files:
git add -f
# Add parts of a file interactively:
git add -p path/to/file
# git add question answers:
# y stage this hunk for the next commit
# n do not stage this hunk for the next commit
# q quit; do not stage this hunk or any of the remaining hunks
# a stage this hunk and all later hunks in the file
# d do not stage this hunk or any of the later hunks in the file
# g select a hunk to go to
# / search for a hunk matching the given regex
# j leave this hunk undecided, see next undecided hunk
# J leave this hunk undecided, see next hunk
# k leave this hunk undecided, see previous undecided hunk
# K leave this hunk undecided, see previous hunk
# s split the current hunk into smaller hunks
# e manually edit the current hunk
# ? print hunk help