-
Notifications
You must be signed in to change notification settings - Fork 46
Git
Sᴛѧʀʟɪɴɢ edited this page Jul 2, 2019
·
6 revisions
Команды:
-
git cherry -v master
- отличия в коммитах с master -
git log --oneline
- история коммитов в текущей ветке -
git add -a
- stages all changes. -
git add .
- stages new files and modifications, without deletions. -
git add -u
- stages modifications and deletions, without new files.
git rebase -i HEAD~*
, * - количество коммитов
Сохранение изменений при rebase - Ctrl + X, Y, Enter
// package.json
"dependencies": {
"dependency_name": "organization_name/repository_name#branch_name",
}