Github úložisko vytiahnuť commit tlačiť

Príklady kódu

0
0

github úložisko vytiahnuť commit tlačiť

My Github Guide
===============
# To make a new commit:
$ git commit -am "My commit message here"

# To update repository: (master)
$ git pull origin master

# Delete all unCommitted changes
$ git stash

Branches
========
# Check out branch ut using on
$ git branch 

# Create new branch
$ git branch MyNewBranch

# Switch to branch
$ git checkout MyNewBranch

# Return to old commit
$ git checkout COMMIT_HASH
(Example: git checkout a0e3d36ae57a06ac31c70ed7008c58c044e13364)
git merge MyNewBranch (Like commit to MyNewBranch)
git push
# Now MyNewBranch is the old commit!
# U can also just commit&push if u want to go back without branch

More git commands
=================
$ git log
$ git log --oneline

Podobné stránky

Podobné stránky s príkladmi

V iných jazykoch

Táto stránka je v iných jazykoch

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................