1
0

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 1 year has passed since last update.

GitHubの新しいリポジトリに既存アプリのリソースコードを登録する

Last updated at Posted at 2022-01-05

作業

まず、ローカルでFinderから
既存アプリのコードをコピーして、名前を変更する。

GitHub上のコードをgit cloneコマンドでコピーすると
.gitignoreで除外されているファイルがコピーできない。

スクリーンショット 2022-01-05 9.28.08.png

続いて、GitHubで新しいリポジトリを作成する。

スクリーンショット 2022-01-05 9.39.27.png

最後に、ターミナルからコマンド実行していく。

ターミナル

# ディレクトリに移動
% cd new_app

# 既存アプリのファイルが存在するか確認
% ls -a

# 以前までのコミット履歴も確認
% git log

# Gitに設定されているオリジンを確認
% git remote -v

# 同オリジンを削除
% git remote rm origin

# 送信先を新しいリポジトリに変更する
% git remote add origin git@github.com:アカウント名/新しいリポジトリ名.git

# 検証としてファイル追加する
% touch test

# 変更をステージングへ追加する
% git add .

# メッセージ付きでコミットする
% git commit -m '検証'

# GitHubにプッシュする
% git push origin master

1
0
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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?