-
MY PROJECTS
-
Recent Posts
- Js.Practice.ToDoList
- CSS.Grid
- Nginx. How to return json file?
- Js.React.AddEventsOnRender
- Js.React.Handling Event in Functional Components
- Js.React.ComponentState
- Js.React.Functional and class style
- Js.React.How react renders?
- JS.EventLoop
- JS.Promise.AsyncAwaitChain
- Js.Promise.AsyncAwait
- Js. Chain of promises
- Algo.Leetcode.111. Minimum Depth of Binary Tree
- Algo. Leetcode. 104. Maximum Depth of Binary Tree
- Algo. Leetcode. 100. Same Tree
- Js.InterviewTasks.CalcNumbersInFunctions
- Delphi. Const for managed types
- SQL.Group by
- GitExtensions.SSH.PuttyClient
- Delphi. What is difference to TProcedure, TMethod = procedure of object and TAnonMethod = reference to procedure ?
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