-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathgit-howto
More file actions
23 lines (16 loc) · 691 Bytes
/
git-howto
File metadata and controls
23 lines (16 loc) · 691 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
At this time, using git to develop is quite new to me [Jonathan Campbell]
so I am writing notes here to assist:
# Setting up development
- Get your SSH private key from the firewall (mine is: git@firewall.impactstudiopro.com:/data/git/ssh-keys/Jonathan-Campbell/git_rsa)
- If ssh-agent is not already running, start ssh-agent by typing eval `ssh-agent`
- Add your SSH private key with: ssh-add <path to your private key>
# get the code
git clone ssh://git@firewall.impactstudiopro.com/~/builder-v4.git
# make the firewall the default push location
git push origin master
# adding changed or new files
git add <files>
# commit changed/new files
git commit -a
# push to server
git push