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?

More than 3 years have passed since last update.

Gitやpowershellの使い方

Posted at

パワーshellで権限を付与する方法

PowerShell -ExecutionPolicy RemoteSigned

od.js インストール
anglerインストール 

プロジェクトはC:\Users\shimizuに保存される

typescript
NODJSをインストール
TSをインストール

Node.js: 12.18.1
npm: 6.14.5
Angular CLI: 10.0.0

javascriptの実行
C:\Users\shimizu>node C:\Users\shimizu\Desktop\tutorial.js
Hello kou

GitHub
●インストール
https://qiita.com/manabu-watanabe/items/ecf1b434baf305adaa00

問題
fatal: remote origin already exists.
と表示されてリポジトリにpushできない問題

対処法
originが存在していると書かれているのでそれを削除する

$ git remote rm origin originの削除
$ git remote add origin git@bitbucket.org:ユーザー名/アプリ名.git
$ git push -u origin master

●GITコマンド
https://qiita.com/kohga/items/dccf135b0af395f69144

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?