0
0

Cloud LaTeXをVSCodeで使ってGit管理する

Posted at

対象

cloud latexのアカウントを持っていることを想定する。また、Gitも使える前提。

やり方

Cloud LaTeXをVSCodeで使う

  1. 公式 を参考にして、Cloud LaTeX側の準備をする
  2. ローカルに空のプロジェクト用フォルダを作成し、VSCode でそのフォルダを開く
    (これを忘れるとVSCode で開いた場所に勝手にcloneされる)
  3. 公式 を参考にして、VSCode側の設定をする

Git管理する

最初にやること

cd プロジェクト用フォルダ
git init

編集後にやること

git status  # check the changes
git add .   # stage the changes
git status  # check the staged changes
git commit -m "comment"   # the comment can be anything
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