Skip to content

wakayama-hacker/github-hands-on

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 

Repository files navigation

GitHub Hands-on

環境の構築

Gitのインストール

Mac

$ brew install git

Windows

https://git-for-windows.github.io/

Rubyのインストール

Mac

$ brew install ruby

Windows

http://rubyinstaller.org/downloads/

$PATH に登録するのを忘れないこと。 https://www.evernote.com/l/ABWu6deGMHVDa78EJrVeRHcfGl91MeelL1QB/image.png

Nodeのインストール

Mac

$ brew install node

Windows

https://nodejs.org/en/

おまけ

もし brew で以下のようなエラーが出たら。。。

Error: You have not agreed to the Xcode license. Please resolve this by running:
  sudo xcodebuild -license
$ sudo xcodebuild -license

以下のように ~/.bash_profile に書いておいて定期的にターミナルで update ってやるといいよ!

function update {
    set -ex

    npm update -g
    npm cache clean

    update_rubygems
    gem update bundler
    gem cleanup

    brew update
    brew upgrade
    brew cleanup

    echo "Update complete!!"
}

Hands-on

HTML + JavaScriptのプロジェクトを作ってみる

  1. GitHubでプロジェクトをつくる
  2. GitHubにファイルをコミット
  3. git clone
  4. git add
  5. git commit
  6. git push
  7. Issueをつかってみる
  8. Issueの投稿
  9. ラベル、マイルストーン
  10. コミットの際に特定のIssueに関連付け
  11. Projectsを使って見る
  12. 他社サービスとの連携
  13. Travis CI

About

Documentation for GitHub hands-on at 2016/09/24

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published