-
Recent Posts
- Delphi. Simple helper
- Visitor pattern. Simple example
- Delphi. HashMap
- SVN. Return to the previous state
- Delphi. Dependency Injection With Spring
- Delphi. IDE Git Client
- Delphi. Serialization / Deserialization. XML / JSON
- Delphi. Lambda. Anonymous methods
- Delphi. Jcl. HashMaps
- Icons. Collections
- DesignPatterns. Iterator
- Delphi. UniGUI. Как отключить меню с сортировкой в гриде?
- Delphi. Соответствие типов С и Delphi
- Delphi. UniGUI. PopupMenu
- DesignPatterns. Mediator
- DesignPatterns. ChainOfResponsibilities
- DesignPatterns. Proxy
- DesignPatterns. Flyweight
- Delphi. UniGUI. PagedGrid with summary
- DesignPatterns. Facade
Categories
- Aptana
- Azure
- C#
- DataSnap
- DBExpress
- Delphi
- Delphi и сети
- Delphi. Язык программирования
- ExtJS
- FastReport
- FireDAC
- FireMonkey
- GIT
- ICS
- IDE
- IIS
- Indy
- InnoSetup
- javascript
- jQuery
- JSON
- LiveBindings
- MSHTML
- MySQL
- PHP
- REST
- Ribbons
- SMS
- SQL инструкции
- SVN
- TRichView
- UniGui
- WebBroker
- WinAPI
- Windows
- Алгоритмы
- Без рубрики
- Деревья
- Ищу ответ
- Компонентостроение
- Мои компоненты
- Начальный уровень
- Обработка исключений
- Парсинг
- Потоки(Threads)
- Регулярные выражения
- Тестирование приложений
Category Archives: GIT
Git commands
cloning from remote
1 2 |
cd C:\C#\ScoreLib git clone https://github.com/KoHHeKT/ScoreLib.git |
git commit
1 2 3 |
git status git commit -m "Improve data model prototype" git push |
if added some files to local repository and need to sync with server
1 2 3 4 5 |
Summary: git add -A stages All git add . stages new and modified, without deleted git add -u stages modified and deleted, without new |
update local repository from master
1 |
git pull origin master |
remember me on local pc
1 |
git config credential.helper store |
Как вернуться к более раннему коммиту? Stackoverflow … Continue reading
Posted in GIT
Comments Off on Git commands