“git добавьте коммит в одну команду” Ответ

git добавить Commit push One Command

# The following command does not add new files, only updated pre-existing ones.
git commit -am "commit all the things" && git push
Precious Panda

git добавьте коммит в одну команду

git commit -am "message"
Marjo

GIT Commit and Add в одну команду

// first define a new alias for the commands:
git config --global alias.add-commit '!git add -A && git commit'

// and then use it by typing in the message:
git add-commit -m 'My commit message'

//Credit for the original post on stackoverflow.
|_Genos_|

git добавить, совершать и нажмите в одну команду

git config --global alias.cmp '!f() { git add -A && git commit -m "$@" && git push; }; f'
Blyxyas

Git добавить и совершить в одну команду

git config --global alias.add-commit '!git add -A && git commit'
Annoying Albatross

Ответы похожие на “git добавьте коммит в одну команду”

Вопросы похожие на “git добавьте коммит в одну команду”

Больше похожих ответов на “git добавьте коммит в одну команду” по Shell/Bash

Смотреть популярные ответы по языку

Смотреть другие языки программирования