-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsvn
32 lines (23 loc) · 828 Bytes
/
svn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
sudo svn import -m "importing nuthan code" /home/tritonetech/nuthancode/vts.sql svn+ssh://nuthan@118.102.132.147/var/svn/vehical/trunk
sudo svn co svn+ssh://nuthan@118.102.132.147/var/svn/vehical/trunk testcheckout
Global setup:
Set up git
git config --global user.name "Nuthan Santharam"
git config --global user.email nuthankumarns@gmail.com
Next steps:
mkdir demo
cd demo
git init
touch README
git add README
git commit -m 'first commit'
git remote add origin git@github.com:nuthansantharam/demo.git
git push -u origin master
Existing Git Repo?
cd existing_git_repo
git remote add origin git@github.com:nuthansantharam/demo.git
git push -u origin master
Importing a Subversion Repo?
Check out the guide for step by step instructions.
When you're done:
Continue