-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathgit.txt
More file actions
24 lines (20 loc) · 652 Bytes
/
git.txt
File metadata and controls
24 lines (20 loc) · 652 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Global setup:
Set up git
git config --global user.name "Frederic Torres"
git config --global user.email fredericaltorres@gmail.com
Next steps:
mkdir DynamicJavaScriptRunTimes.NET
cd DynamicJavaScriptRunTimes.NET
git init
git add .
git commit -m 'first commit'
git remote add origin git@github.com:fredericaltorres/DynamicJavaScriptRunTimes.NET.git
git push -u origin master
Existing Git Repo?
cd existing_git_repo
git remote add origin git@github.com:fredericaltorres/DynamicJavaScriptRunTimes.NET.git
git push -u origin master
Importing a Subversion Repo?
Click here
When you're done:
Continue