git 소스 비교 sync 작업중 질문입니다....!!

parasit의 이미지

현재 회사에서 git 학습하며 사용하고 있는데요

선임분이 과제? 라고 학습을 내주셨는데 궁금한점이있습니다.

master 브랜치와 작업중인 브랜치를 sync 해야하는데요

git 명령어를 사용하여 두 브랜치 상태를(동일폴더,동일파일) 동일하게하는 간단한 방법이 있을까요??

이제껏 repo sync 를 통하여 했지만
틀린 부분만을(원하는 일부분만을) 변경하는 방법이 있을줄로 압니다~ 궁금하네요

제가 잘 알지 못하여 설명도 별로네요...그래도 꼭 답변부탁드려요~~!!

이응준의 이미지

작업중인 브랜치를 지우고, master를 브랜칭하면 됩니다.

작업중인 브랜치를 'work'라고 하면,

git branch -D work
git branch master work

장난같지만 '동일하게'가 목적이라면 이게 정답입니다.

익명 사용자의 이미지

음..

1. 작업하던 working을 master로 병합

git checkout master
git merge working 혹은 git merge --no-ff working

2. working에서 작업 중 master에 동기화

git checkout working
git rebase master 혹은 git merge master

각 명령의 차이점들은 man 페이지를 잘 읽어보시고, 직접 해보시고, 뭐가 다른지 git log --graph나 gitk로 확인해보시고, 다시 man 페이지 읽어보시고.. 그래서 팀 정책은 어떤 경우에 어떤 것을 쓰도록 되어있는지 선임 분께 물어보시고..

마잇의 이미지

이제껏 repo sync 를 통하여 했지만 

이 부분을 좀 구체적으로 설명해 주시면 좋겠는데요. 기존에 어떻게 하셨는지 알아야 다른 방법을 제시해 드릴 수 있을 것 같습니다.

틀린 부분만을(원하는 일부분만을) 변경하는 방법이 있을줄로 압니다~ 궁금하네요

'틀린 부분만을'이라는 건 어떤 상황을 말씀하시는 건지 궁금합니다.

$ git clone original_repo
$ cd orignal_repo
[master,origin/master] $ git branch working # 작업용 브랜치 생성
[master,origin/master] $ git checkout working # 작업용 브랜치로 전환
[working] $ # 파일 내용 수정 ...
[working] $ git add .
[working] $ git commit -m '변경 사항'

master와 working 브랜치가 달라진 상태 입니다. 그리고 최초에 클론했던 orginal_repo의 내용도 변경 되어서 그 내용을 작업중인 브랜치에 적용해야 하는 상황 이라고 칩시다. working 브랜치의 작업 내용을 모두 커밋한 후,

[working] $ git checkout master # master 브랜치로 변경
[master] $ git pull # origin/master의 변경 내용을 merge
[master,origin/master] $ git checkout working # master와 origin/master의 내용이 동기화 되었습니다. 작업용 브랜치로 다시 변경
[working] $ git rebase master # master의 변경을 기준으로 rebase 합니다.
[working] $ git push # rebase된 상태로 자신의 변경점을 original_repo로 적용 합니다.

merge 보다 rebase를 사용하는게 선호하는 이유는 로그 기록이 깔끔해지기 때문 입니다. rebase와 merge의 차이는 다음 글을 참조하세요.

http://www.kernel.org/pub/software/scm/git/docs/git-rebase.html

맨 페이지인데 그림이 잘 나와 있어서 이해하기 쉽습니다.

http://blog.outsider.ne.kr/666

한글로 설명된 블로그 글 입니다.

제가 설명한 내용은 가장 간단한 작업 흐름이고 회사내의 git 사용 방법에 따라 차이를 두어서 적용하셔야 합니다.

http://git-scm.com/book

Pro Git이라는 책인데 무료로 볼 수 있습니다. 읽기가 쉬운 편이고 잘 쓰여졌습니다.


--
마잇

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.