subversion에서 많은 파일들을 커밋할때 특정파일만 선택하는방

hitlerjjang의 이미지

제가 이번에 소스관리를 subversion을 사용해서 할려고 합니다.
설치랑 설정은 무리없이 끝났습니다.

근데 소스를 svn add할려고 하는데요..

만은 디렉토리가 있고 그 하위디렉토리에 또 많은 디렉토리와 파일들이 있습니다.
근데 여기에는 ***.c ***.h 이런파일만 있는게 아니고 라이브러리 파일,바이너리 파일들이 있습니다.
저는 ***.c ***.h파일만 add를 하고 싶거든요..

예를들어
A lib/etc/.dir.c.swp ---add하지 않기를원합니다.
A lib/etc/string.c
A lib/etc/daemon.h
A lib/etc/libcklib.a ---add하지 않기를원합니다
A lib/etc/util.c
A lib/etc/os.c

근데 add는
svn add lib
이렇게 하면 모든 파일이 하위디렉토리에 파일들이 모두 add가 되소 필요없는 파일들이 올라가서 공간을 많이 차지해서 해결을 할려고 하는데 해결방법이 있으면 알려주세요..아님 제가 모르는 옵션이 있으면 알려주세요..

Forums: 
sangwoo의 이미지

find 와 조합하시면 됩니다. UNIX way. ;-)

find lib -type f -name '*\.[ch]' | xargs svn add

덧. lib이 working directory가 아닌 경우는 문제가 있네요 :-(
메뉴얼 좀 살펴봐야겠습니다.

덧. svn add -N lib 하면 디렉토리만 add가 됩니다. 그 이후에 다시 위의 명령어를
쓰시면 되겠습니다. :-)

----
Let's shut up and code.

ktd2004의 이미지

참고로 올려봅니다.
제가 subversion과 같이 사용하고 있는 스크립트입니다. 도움이 되시길...
sgrep입니다.
.svn 디렉토리를 빼고 grep를 해주는 스크립트입니다.

#!/bin/sh

# 파라메터가 없으면 그냥 종료한다.
if [ "$1" == "" ]; then
        exit 0
fi

# 특정 파일을 제외하고 grep을 수행한다.
#       .svn 디렉토리안의 *.svn-base 파일.
#       tags 파일.
#       cscope.out 파일.
grep --color --exclude="*.svn-base" --exclude=tags --exclude=cscope.out --exclude="cscope.files" "$@"

svi 입니다.
working copy본과 base 파일의 차이를 vim을 이용해서 보여주는 스크립트입니다.
#!/bin/bash

if [ "$1" = "" -o ! -f "$1" ]; then
        exit 1
fi


DIRNAME=`dirname $1`
BASENAME=`basename $1`


TARGET="${DIRNAME}/.svn/text-base/${BASENAME}.svn-base"


if [ ! -f ${TARGET} ]; then
        vim "$1"
else
        vim -d "${TARGET}" "$1"
fi

댓글 달기

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
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.