git -k8凯发
-
configurando git
-
git config
- --global user.name "wanderson silva"
- --global user.email 'wanderson.luiz@gmail.com'
- --global color.ui 'auto'
- --global push.default simple
- git config format.pretty oneline
- git remote add origin https://github.com//.git
- .gitignore
-
trabalhando sozinho
-
repositório local
- git init
- git clone
-
git add
- git rm --cached
- git reset head
-
git commit -m ''
- git commit --amend -m "new messages here"
- git status
-
git show
-
git log
-
--oneline
- --decorate
- --all
- deletando arquivos
- git mv
- iniciando seu trabalho
-
repositório virtual
- git remote add origin https://github.com/try-git/try_git.git
- git remote add origin https://wandersonluiz@bitbucket.org/wandersonluiz/raciocinio-financeiro-livro.git
- git push -u origin master
- git remote set-url origin @
- crie um arquivo readme.md para explicar do que se trata seu projeto
-
trabalhando com os outros
- git clone
- git remote set-url origin
- git pull
- git fetch
- abram o arquivo de conflito
- git merge
-
git diff
-
--word-diff
- <(identificador 1)..(identificador 2)>
- --staged
-
git checkout
-
head~
- --
- master
-
começando do começo
- por que versionar?
-
nomeclatura
- workspace
- stage/index
- head
- master
- origin
- branch
- merge
-
ferramentas úteis
- git-gui
- guitk
- github for windows
-
obtendo ajuda
- youtube.com/user/github
- try.github.io
- git help
- guia prático