1
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.

ServiceNow(paris)のNEEDITアプリケーションをgithubのパブリックからプライベートリポジトリに変更する手順

Last updated at Posted at 2021-03-10

最近ServiceNow を勉強しはじめた初心者ですが、自分の備忘録( ..)φメモメモとして記載します。

尚この手順は、既にServiceNowのDeveloperサイトにLearnningコースにある「Needit」アプリケーションをgithub上でForkし自分のインスタンスにインポートした方が対象です。

このまま勉強を進める上でパブリックリポジトリのままだと、コンプライアンス上、具合が悪そうなのでプライベートリポジトリに変更する事にしました。丁度こちらの記事が参考になりそうです(いつの間にか無料アカウントでprivateのリポジトリが作成可能になっていたんですね)。、、、と、(; ・`д・´)あれれ?

スクリーンショット 2021-03-10 21.21.20.png

「Change visibility」が無効になって押せません。どうやらgithubのfork機能を使うと、公開リポジトリをprivateに変更できない仕様の様です。そこで上記矢印にあるリンク先を見ながら対応してみました。

なお方針は以下の通りです。

操作概要

  1. (git hub側で)パブリックリポジトリをローカルにクローンします。
  2. (git hub側で)プライベートリポジトリを新規作成します。
  3. (git hub側で)ローカルのリポジトリをプライベートリポジトリにプッシュ(ミラー)します。
  4. (git hub側で)パブリックリポジトリを削除します。
  5. (ServiceNow側で)パブリックリポジトリから取得したNEEDITアプリケーションを削除します。
  6. (ServiceNow側で)プライベートリポジトリから再度、NEEDITアプリケーションを取得します。

以下、その詳細手順です。

github側の操作

1.Git Bashを起動します。

2.以下のbareモードでリポジトリをローカルへクローンします。

$ git clone --bare https://github.com/exampleuser/old-repository.git

3.github上で新しくミラー先のリポジトリをprivateで作成します。
スクリーンショット 2021-03-10 21.30.54.png

4.以下のコマンドで上記ミラー先にリポジトリをプッシュします。

$ cd old-repository.git
$ git push --mirror https://github.com/exampleuser/new-repository.git

5.ローカルのテンポラリリポジトリは不要なので削除しておきます。

$ cd ..
$ rm -rf old-repository.git

6.パブリック側のリポジトリを削除します。まずはSettingを選択し、、、
スクリーンショット 2021-03-10 21.18.39.png

7.下の方までスクロールし「Delete this repository」ボタンを押して削除します。
(その後の確認ダイアログでリポジトリパスの入力も求められます)
スクリーンショット 2021-03-10 21.32.55.png

Service Now側の操作

1.studioを開きます。
スクリーンショット 2021-03-10 22.35.23.png

2.現状(フォークしたパブリック側)のNeedItアプリケーションを選択します。
スクリーンショット 2021-03-10 22.37.02.png

3.「File」>「Setting」を選択し「Delete」ボタンを押します。
スクリーンショット 2021-03-10 22.40.26.png

4.確認ダイアログで「Delete」ボタンを押し、再確認ダイアログでも「delete」を入力しNEEDITアプリケーションを削除します。
スクリーンショット 2021-03-10 22.41.25.png

5.再度、studioを開き直します。
スクリーンショット 2021-03-10 22.35.23.png

6.「Import From Source Control」ボタンを押します。
スクリーンショット 2021-03-10 22.44.27.png

7.上記でミラーリングしたURLを入力し、ブランチは「main」、Credentialは「ご自身のgithubアカウント」を選択します。
スクリーンショット 2021-03-10 22.51.21.png

以上でforkしたNEEDITアプリケーションをパブリックからプライベートリポジトリに変更できました。
念のため「Switch Branch」し、ちゃんと今まで自分がコミットしたブランチが表示されるかチェックしてみてください。(私は幾つかのコースを修了したので沢山ブランチが存在しています。)
スクリーンショット 2021-03-10 22.55.31.png

以上、自分用の備忘録( ..)φメモメモでした。

1
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
1
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?