Rename Git branch master to main


❯ git -v
git version 2.39.1

 

■ Delete local branch


git branch -d master

 

■ Rename local branch


git branch -m master main

 

■ Push the new branch, set local branch to track the new remote


git push -u origin main


git push --set-upstream origin main

 

■ Delete remote branch


git push origin :master


git push origin --delete master

I got this.


❯ git push origin :master
To https://github.com/your/project
 ! [remote rejected] master (refusing to delete the current branch: refs/heads/master)
error: failed to push some refs to 'https://github.com/your/project'

Switch default branch master to main at https://github.com/your/project

Rename Git branch master to main

 

■ Show status


❯ git status
On branch main
Your branch is up to date with 'origin/main'.
nothing to commit, working tree clean

❯ git branch -a
* main
  remotes/origin/main

❯ git branch -l
* main

❯ git branch -r
  origin/main

 

■ Conclusion



Repository default branch
Choose the default branch for your new personal repositories. You might want to change the default name due to different workflows, or because your integrations still require “master” as the default branch name. You can always change the default branch name on individual repositories.


👉 GitHub - Settings - Repositories hatena-bookmark

👉 Managing remote repositories - GitHub Docs hatena-bookmark


QuickTime で簡単に「カット編集」できるとは!

👉 iMovieより早くて簡単! MacのQuickTimeで動画編集する方法 | ライフハッカー・ジャパン hatena-bookmark


⌘ (command) + Y   → カット
⌫ (delete)        → 削除

ということのようです。

iMovieより早くて簡単! MacのQuickTimeで動画編集する方法
👉 MacのQuickTime Playerのキーボードショートカットとジェスチャ - Apple サポート (日本) hatena-bookmark

実際は、動画前後の不要部分をトリムするだけなら、


⌘ (command) + T  → トリム

のほうが簡単です。



👉 Twitter 動画をツイートできず - 公式「YUV 4:2:0 ピクセルフォーマット にのみ対応しています」 hatena-bookmark


【Android Studio】Giraffe や Flamingo の New UI がシンプルで素晴らしい件

いまどきのインターネットやパソコンやアプリが複雑でややこしすぎるのは皆が感じていることです。

「人間工学に基づき」とかいいながらややこしいだけのUIから、JetBrains は先を見越してシンプルなUIに向かっています。

👉 New UI | IntelliJ IDEA Documentation hatena-bookmark

それに合わせて Android Studio もシンプルで直感的なUI方面へ。


👉 Alexis C. GRIDEL's Blog - How to enable the new UI in Jetbrains products hatena-bookmark

ついでに、デフォルトテーマもコントラストを強くした「Dark」テーマは見やすくなっています。

Idea Intellij Ultimate。


IntelliJ IDEA 2022.3.2 (Ultimate Edition)
Build #IU-223.8617.56, built on January 26, 2023
Subscription is active until January 14, 2024.
Runtime version: 17.0.5+1-b653.25 x86_64
VM: OpenJDK 64-Bit Server VM by JetBrains s.r.o.

Android Studio Flamingo。


Android Studio Flamingo | 2022.2.1 Beta 1
Build #AI-222.4459.24.2221.9471578, built on January 10, 2023
Runtime version: 17.0.4.1+0-17.0.4.1b469.62-9127311 x86_64
VM: OpenJDK 64-Bit Server VM by JetBrains s.r.o.

【Android Studio】Giraffe や Flamingo の New UI がシンプルで素晴らしい件

Android Studio Giraffe。


Android Studio Giraffe | 2022.3.1 Canary 2
Build #AI-223.7571.182.2231.9523943, built on January 25, 2023
Runtime version: 17.0.5+0-17.0.5b653.25-9484017 x86_64
VM: OpenJDK 64-Bit Server VM by JetBrains s.r.o.

Android Studio Giraffe | 2022.3.1 Canary 2

👉 New UI | IntelliJ IDEA Documentation hatena-bookmark

これ、次期、Android Studio Flamingo Stable に適用は、もしかして、まさか1年後とかなの?


👉 Android Studio Flamingo 隠された新デザイン「New UI」を有効化する2つの方法 🐦 hatena-bookmark
👉 【Android Studio Flamingo】dependencies をバージョンアップデートするときに確認するべき3つの相性 hatena-bookmark