Skip to content

Instantly share code, notes, and snippets.

@reiro
Last active August 29, 2015 14:21
Show Gist options
  • Save reiro/80f18b0ed27d4804b47a to your computer and use it in GitHub Desktop.
Save reiro/80f18b0ed27d4804b47a to your computer and use it in GitHub Desktop.
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