Bunch
0
Q:

github

a man of software I see
1
git checkout master 
git checkout master
git pull origin master

Adding New Features
git checkout -b my_branch_name
git add .
git commit -am "Initial commit"
git branch
git push -u origin new_branch_name 
1
echo "# practice" >> README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/shlee87/practice.git
git push -u origin master
9
GitHub, Inc. is a United States-based global company that provides hosting for software development and version control using Git.
3
*Git* that source code..!

Ahah!, right? Get/git that source code..?...
1
//cancel commits
git reset HEAD^
//cancel last 3 commits
git reset HEAD~3

//when first commit
git push -u origin master

//remove remote origin
git remote remove origin

//reset remote origin
git remote add origin https://github.com/yourname/project.git

git init
//add all
git add .

//cancel adds
git reset
6
echo "# practice" >> README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/shlee87/practice.git
git push -u origin master
4
source \Barist4\sql\Barist4_main.sql
0
source \Barist4\sql\storedProcedures.sql
0
adding git remote origin
1

New to Communities?

Join the community