git ์ผ๋ก ์ฝ๊ฒ ๋ฒ์ ๊ด๋ฆฌ ํ๊ธฐ - Easy Version Control with Git
Configuration
Useful Config
git config --global user.name "KwangSeob Jeong" git config --global user.email "lesstif@gmail.com"
terminal ์์ log ๋ฅผ ๋ณด๊ฑฐ๋ diff ์ ์์ผ๋ก ๊ตฌ๋ถ
git config --global color.diff on git config --global color.status on git config --global color.branch on
git status ์ UTF-8 ์ธ์ฝ๋ฉํ์ง ์๊ณ ํ๊ธ๋ก ํ์
git config --global core.quotepath false
To make pushing to remote repositories easier and to avoid unnecessary commits, you can use the following commands.
# set default so that all changes are always pushed to the repository git config --global push.default "matching" # set default so that you avoid unnecessary commits git config --global branch.autosetuprebase always
Git ์ฃผ์ ๋ช ๋ น์ด
git init
git repository ๋ง๋๋ ๋ช ๋ น. ํ์ฌ ํด๋๋ฐ์ .git ์ด๋ผ๋ hidden folder ๋ฅผ ๋ง๋ค๊ณ ๊ทธ ์์ metadata ๋ฅผ ์ ์ฅํ๋ค.
git add
git branch
Here’s a scenario: we’re working happily on our project when suddenly we have a grand idea. This idea is so revolutionary, it will change our project drastically. We’ve got to give it a try, but we don’t want to throw this insecure, first-draft code in with our tested and true code. What to do? This is where git branch will be immensely helpful. Let’s branch our project so that if our big idea doesn’t work out, there’s no harm done.
git branch
git merge
git mv
Unix ์ฒ๋ผ file ์ด๋ directory, symbolic link๋ฅผ move ํ๊ฑฐ๋ rename ํ ์ ์๋ค.
() ๊ดํธ์์ ์ฝ์ด์ฌ ํ์ผ์ pattern ์ ์ง์ ํ๋ค.
ํ ํด๋์์์ ์ฌ๋ฌ ํ์ผ์ ์ฝ์ ๊ฒฝ์ฐ ํ์ฅ์์ ๊ตฌ๋ถ์ ; ๋ก ํ๊ณ ์ฌ๋ฌ ํด๋์์ ์ฝ์ ๊ฒฝ์ฐ ๊ณต๋ฐฑ์ผ๋ก ๊ตฌ๋ถ์ ํ๋ค.
for %x in (src\*.cpp;*h src\res\*) do git mv "%x" "..\dest\%x"
git remote
remote repository ๋ฅผ ์ค์ ํ๋ ๋ช ๋ น์ด์ ์งํฉ
git remote -v
ํ์ฌ ์ค์ ๋ remote ์ ์ฅ์ ํ์ธ
git remote add ๋จ์ถ์ด๋ฆ url
์๋ก์ด remote ์ ์ฅ์ ๋ฑ๋ก
git remote add origin lesstif@www.example.org:/var/lib/git/testprj.git