Category:Git

From ElectroDragon Wiki
(Redirected from Git)

Basic Work flow

Init New

  • Init new by git init, git add file and git commit
  • Set a new repository on github

Add to Remote

  • add local to remote service:
git remote add origin https://github.com/hechao/python
git remote add origin git@github.com:hechao/python.git
  • This one is more easy and save user name and pass: git remote add origin https://{your name}:{you passwd}@github.com/{your name}/pmoney.git
  1. origin is the alias name for remote repository, here is pmoney.git, you can delete by git remote rm origin, alias can be any name you like
  2. to check all alias like origin use:
git remote -v

Add, Commit and log

  • git add .
  • git commit
  • git commit -m "Add test.rb to test git function"

Git push

  • after added, then add files you worked, then you can push local to remove
git push -u origin master, or git pull origin master
  1. -u means remember the parameter, next time you can only use git push
  2. origin is the alias, and master means the branch
  3. git add and git commit should already be done before first push

Clone or fetch

  • Update to latest git update: git fetch orgin, and need to mergin the orgin to local: git merge origin/master, or use git pull origin master to do it automatically
  • git status to check if anything need to be committed

Operation

File

  • touch xxx.py
  • git add .
  • stage the difference: git diff --staged
  • git rm *.py or git mv

or

For the last change

  • git reset test.py // reset to unstage the file
  • git checkout -- test.py // undo all the check on the file since from last commit
  • to cancel the last commit, use git commit --amend

Extra

Switch/create branch

  • git branch new // create new branch
  • git branch -d new // delete branch
  • git checkout new // switch branch

Git

  • create a git on github
  • in git gut "add remote", enter name and web address
  • rescan, stage, commit and push

Submodule

clone all

clone step by step, after clone main reposirity

  • git submodule init
  • git submodule update

add

del

git submodule deinit -f stm32_mylib
git rm --cached stm32_mylib

update

  • git submodule update --init --recursive
  • git submodule update --recursive --remote
  • git pull --recurse-submodules

Config

  • If use http:// or https git clone, only need set export
export http_proxy="http://192.168.8.101:1081"
export https_proxy="http://192.168.8.101:1081"

Global Config

  • git config --global user.name edragon
  • git config --global user.email "you@example.com"

Save password

  • git config credential.helper store

Common Issues

save username and pass

  • set url: git remote set-url origin git@github.com:username/repo.git
  • git config credential.helper store

Use Guide

Other Useful tools

Reference

Pages in category "Git"

The following 3 pages are in this category, out of 3 total.