forked from ANTsX/ANTs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnotes.build
More file actions
22 lines (18 loc) · 746 Bytes
/
notes.build
File metadata and controls
22 lines (18 loc) · 746 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
export MYSRC=/tmp/my_favorite_source_directory
mkdir -p ${MYSRC}
cd ${MYSRC}
git clone git@github.com:BRAINSia/ANTS.git
cd ${MYSRC}/ANTS
git svn init https://svn.code.sf.net/p/advants/svn/trunk
git update-ref refs/remotes/git-svn refs/remotes/origin/master
git svn rebase
## Ensure that the following is represented in your .git/config file
#[svn-remote "svn"]
# url = https://svn.code.sf.net/p/advants/svn/trunk
# fetch = :refs/remotes/git-svn
### Git notes
## git svn fetch
## git svn rebase
## git svn dcommit
## git push origin master:svn (This shall always be valid with respect to the svn repository)
## git push origin master:master (This is the version that is build for the nightly dashboards at http://testing.psychiatry.uiowa.edu)