/
git ์œผ๋กœ ์‰ฝ๊ฒŒ ๋ฒ„์ „ ๊ด€๋ฆฌ ํ•˜๊ธฐ - Easy Version Control with Git

git ์œผ๋กœ ์‰ฝ๊ฒŒ ๋ฒ„์ „ ๊ด€๋ฆฌ ํ•˜๊ธฐ - Easy Version Control with Git

Configuration

Useful Config

commit ์‹œ ๋“ค์–ด๊ฐˆ ์ด๋ฆ„ ์„ค์ •
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 ์„ ์ง€์ •ํ•œ๋‹ค.

ํ•œ ํด๋”์•ˆ์—์„œ ์—ฌ๋Ÿฌ ํŒŒ์ผ์„ ์ฝ์„ ๊ฒฝ์šฐ ํ™•์žฅ์ž์˜ ๊ตฌ๋ถ„์€ ; ๋กœ ํ•˜๊ณ  ์—ฌ๋Ÿฌ ํด๋”์—์„œ ์ฝ์„ ๊ฒฝ์šฐ ๊ณต๋ฐฑ์œผ๋กœ ๊ตฌ๋ถ„์„ ํ•œ๋‹ค.

src์˜ cpp,header, res ํŒŒ์ผ์„ dest ํด๋”๋กœ mv
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

์ฐธ๊ณ  ์ž๋ฃŒ