Git tips
1.git rebase develop Current Branch : master ; Other Branch : develop ; Beginning base point both master and develop : Base_Node Other Branch develop 's last committed point: developLastPoint What does it mean to "git rebase develop" runs when the current branch is master? Hi, Git. I'm master branch. Please rebuild me base on develop. My beginning point will be developLastPoint of the branch develop . 2. git merge develop Current Branch : master ; Other Branch : develop ; Means: Hi, Git. I'm master branch. Please make a combination of differents of the branch develop and append it into my branch. 3. workflow 3.1 git init -> git add -> git commit 3.2 git init -> git commit -a (equals git add -> git commit) git init: Hi git, please handle current folder. git add: Hi git, please add some files into staging area. 4.branch git branch git branch new_branch_name git branch -d will_be_deleted_branch_name git branch -D Must...