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

ローカルにあるファイルやディレクトリをGitLabで管理する

Posted at

いつもはmainブランチから開発用ブランチを切って作業をしていて、新規開発で実装したコードをGit上で管理する際に忘れてるフローがあったのでメモとして残します。

  1. GitLab上にプロジェクトを作成する。

  2. リポジトリをデフォルトブランチmainで作成する。
    git init --initial-branch main

  3. リモートリポジトリ先の名前をoriginに設定。
    git remote add origin <your-gitlab-repo-url>

  4. リソースをステージングする。
    git add .

  5. コミットする。
    git commit -m "Initial commit"

  6. プッシュする。
    git push -uf origin main

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