Last active
August 29, 2015 14:21
-
-
Save reiro/80f18b0ed27d4804b47a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git config --global user.name "Your Name" | |
git config --global user.email [email protected] | |
git remote add origin https://github.com/<username>/first_app.git # Добавление удалённого репозитория | |
git init | |
git add . | |
git commit -m "Initialize repository" | |
git push -u origin master | |
git status | |
git branch | |
git checkout -f #отмена изменений в дереве | |
git checkout -b modify-README # Создание новой ветки | |
git commit -a -m "Improve the README file" # добавляет изменение в файлах и создаёт коммит | |
# Если созданы новые файлы сначала -git add . | |
git checkout master # Переключение на мастер ветку | |
git merge modify-README # Обьединение резуультатов с мастер веткой | |
git branch -d modify-README # удаление ненужной ветки |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment