1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Cloud9上でgithubで公開されているソースコードを取得する

Last updated at Posted at 2019-07-17

実行環境

 IDE:cloud9(事前にAWSのアカウント取得済み)
 git:github(事前にgithubアカウント取得済み)

やりたいこと

 書籍でソースコードをgithubで公開しているケースが多いので
 いつでもgithubからソースコードをとってこれるようにお決まりのコマンドをメモで残しておく
 Cloud9はgithubと連携することができるということで早速試してみた。

やってみた

今回とってくるソースコードはコチラ
URL:https://github.com/oreilly-japan/deep-learning-from-scratch
clone先のディレクトリ名:deep-learning-from-scratch

実行コマンド&出力結果

ec2-user:~/environment (master) $ git clone https://github.com/oreilly-japan/deep-learning-from-scratch deep-learning-from-scratch                                                                                                                   
Cloning into 'deep-learning-from-scratch'...
remote: Enumerating objects: 400, done.
remote: Total 400 (delta 0), reused 0 (delta 0), pack-reused 400
Receiving objects: 100% (400/400), 5.25 MiB | 4.41 MiB/s, done.
Resolving deltas: 100% (206/206), done.
ec2-user:~/environment (master) $ 

コマンド実行後、↓↓な感じで新しくディレクトリとファイルが現れた。
コメント 2019-07-17 104155.png

gitは賢いのでカレントディレクトリに同名のディレクトリがなければ、自動的に作ってくれるのはイイね。

~おしまい~

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?