2
2

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 3 years have passed since last update.

codecommitにて、gitをpushするまでの、道のり。

Posted at

#はじめに
codecommitにて、gitをpushするまでの、道のり。

最終更新日

2021年12月13日

環境の情報

OS
Ubuntu20.04

注意

最新の状態を確認して下さい。

公式はこちら

#注意
ブランチがmasterとなっています。

#実際にやってみます

リポジトリをクローンします。
空っぽのままの状態です。

作っていいところへ移動する。
$ git clone ssh:git-codecommit.XXXXX.amazonaws.com/v1/repos/test(リポジトリ名)
Cloning into 'test(リポジトリ名)'...
warning: You appear to have cloned an empty repository.

いることをかくにんします。

$ ls
test(リポジトリ名)

ブランチはまだこざいません。

$ cd test
$ git branch

いじるひとの名前を登録します。

$ git config --global user.name User

メールアドレスを登録します。

$ git config --global user.email XXXXX@.co.jp

登録されたか確認します。

$ git config --global --list
user.email=XXXXX@.co.jp
user.name=User
core.editor=vi

試しにハローワールドでも書いてみます。

$ echo 'hello world' > README.md

アドします。

$ git add .

コミットします。

$ git commit -m "first Commit"
[master (root-commit) XXXXXX] first Commit
 1 file changed, 1 insertion(+)
 create mode XXXXXX README.md

ログをみます。

$ git log
commit XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX (HEAD -> master)
Author: User <XXXXX@.co.jp>
Date:   Mon Dec 13 15:18:30 2021 +0900

    first Commit

マスターがいるのを確認します。

$ git branch
* master

プッシュします。
特にエラーなど出なければ問題ありません。

$ git push origin master
Enumerating objects: 3, done.
Counting objects: 100% (3/3), done.
Writing objects: 100% (3/3), 223 bytes | 223.00 KiB/s, done.
Total 3 (delta 0), reused 0 (delta 0)
To ssh://git-codecommit.XXXXX.amazonaws.com/v1/repos/test
 * [new branch]      master -> master
2
2
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
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?