LoginSignup
4
0

More than 3 years have passed since last update.

emacs,qiita,gitについて

Last updated at Posted at 2020-12-14

!Mac OS X-10.15.7 !ruby-2.7.1p83

ubuntu,emacsの使い方

ubuntuでのpasteは, Ctrl-shift vして右クリック.(右クリックだけでもできた)

qiitaの編集

README.orgの該当箇所を

#+AUTHOR: your name
#+name_list: your number , your name
#+qiita_id: your id
#+github_id: your id

に変更.

shell[I] commandについて

Ubuntuやbashもあるが,fish,zshが流行り.

  • mkdir (make dir) # 新しいディレクトリの作成
  • pwd(print working dir) # 絶対パスの表示 (今いる場所を表示してくれる)
  • cd (change dir) # ディレクトリの変更(いる位置を変える)
  • cd ..#一つ戻る

emacs

emacsにおける編集での一連の流れは

  1. emacs XXXXX.org
  2. 入力
  3. C-x→C-s (save)
  4. C-x→C-c (quit) かC-z(stop)

git

githubにあるrepositoryをlocalに移すには,

  • git clone GITHUB_REPOSITORY
  • cd REPOSITORY
  • git remote -v

gitにあげる方法は

  • git pull origin main
  • 編集
  • git add -A
  • git commit -m 'first commit' 
  • git pull origin main
  • git push origin main

!Mac OS X-10.15.7 !ruby-2.7.1p83


  • source ~/grad_members_20f/members/szksjm/qiita_post/R1.org
4
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
4
0