Github 및 Git 페이지

1468 단어 github
기본git 명령
username, 이메일 설정
$ git config --global user.name "your name"

$ git config --global user.email "[email protected]"

$git init                     // 



$git add .                   // ( , gitignore add  )



$git commit               // , ( -m “ ” )


 
gitfetch: 원격에서 최신 버전을 로컬로 가져오는 것과 같습니다. 자동merge가 되지 않습니다.
git fetch origin master

git log -p master..origin/master

git merge origin/master


 
$ git remote add origin [email protected]:WadeLeng/hello-world.git



  :fatal: remote origin already exists.



  :$ git remote rm origin


 
 
 $ git push origin master



  :error:failed to push som refs to



  :$ git pull origin master // github , push  。


 
 npm config set registry=http://registry.npmjs.org
 

GitHub Pages


github Pages는 매우 편리한 기능으로 프로젝트가 http(https가 아님)의 정적 자원으로 접근할 수 있다. 이것은 다른 곳에서github 프로젝트에 파일을 불러올 수도 있고 웹 페이지를 만들어서 전단 프로젝트나 개인 홈페이지를 보여줄 수도 있다는 것을 의미한다.
공식 강좌https://pages.github.com/
Git pages는 프로젝트에 대응하거나 개인에 대응하는 사이트를 만들 수 있습니다.
프로젝트 사이트의 예: gh-pages 지점을 만듭니다.이 지점 아래의 자원은 http 방식으로 접근할 수 있습니다.형식http://username.github.io/repository.(username:사용자 이름,repository:항목 이름)
 
 
 

좋은 웹페이지 즐겨찾기