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?

【Git】GitLabの指定の場所に複数ファイルをアップロード

Posted at

GitLabの指定の場所にファイルをアップロードするには、以下の手順で進めます。

前提

手順

1. リポジトリのクローン(未クローンの場合)

  • まだリポジトリをクローンしていない場合、コマンドプロンプトを開き、以下のコマンドでクローンします。
    git clone https://gitlab.com/XXXXX/vbaproject.git
    
  • これで、ローカルにvbaprojectフォルダが作成されます。

2. classディレクトリにファイルをコピー

  • クローンしたリポジトリフォルダに移動します。
    cd vbaproject/class
    
  • 複数のファイルをclassディレクトリにコピーまたは保存します。

3. ファイルをステージングに追加

  • 以下のコマンドで、ステージングに追加します。
    git add .
    

4. コミットを作成

  • 変更内容をコミットします。
    git commit -m "Add Class to tmp directory"
    

5. リモートリポジトリにプッシュ

  • コミットした内容をGitLabのmainブランチにプッシュします。
    git push origin main
    

これで、ClassファイルがGitLabのmain/classディレクトリにアップロードされます。

image.png

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?