How to update the GIT remote repo
Update to the new repo
git remote set-url origin <new repo>
Check the current origin
git remote -v
After we moved to the new repository… run this command to clean up deleted branches
git fetch -p
Update to the new repo
git remote set-url origin <new repo>
Check the current origin
git remote -v
After we moved to the new repository… run this command to clean up deleted branches
git fetch -p
Run this example command below in a command line In this example, is to upgrade the version by specify the version @<version>
เมื่อเราต้องการสร้าง tag ที่เป็นเหมือน label แปะไว้สำหรับ version ใด vesion หนึ่ง เช่น เมื่อเรา deploy prod ที่ version ไปแล้ว เราอาจจะอยาก tag เพื่อให้รู้ว่า deploy prod ที่ version ไหน นี้คือคำสั่งสำหรับสร้าง tag Create a tag For examle หลังจากลอง list tag ออกมาโดยใช้คำสั่งนี้ List tags และเมื่อต้องการ push tag ที่หา remote ใช้คำสั่ง Push tags to remote
เมื่อเพื่อนเราได้ commit และ push ของเขาขึ้นที่ repository เรียบร้อยแล้ว เราจะเรียก branch ที่อยู่ใน server เราเรียกว่า remote branch และเราเมื่อต้องการ checkout remote branch เราจะใช้คำสั่งนี้ เพื่อ update branch จาก repo มาก่อน checkout remote มาที่เครื่องเรา ที่มา https://www.freecodecamp.org/news/git-checkout-remote-branch-tutorial/
When you need to connect the remote database that is behind the firewall or the jumpbox. Use this command to connect the target database via ssh tunnel. Example Then, keep that terminal opens. Try to connect the database from local Basic commands that you should know
Open the terminal run command 3. There is a prompt to enter file name 4. After the key created, you can find in the .ssh folder in your home folder. There will be <your_file>, this is the private key, and <your_file>.pub which is the public key. 5. Share your public key to 3rd parties. Enjoy!!…
ใน git ปกติแล้วเราต้องการลบ branch สามารถใช้คำสั่งด้านล่างได้เลย แต่ถ้าได้ข้อความจากgit บอกว่า the Branch xxxx is not fully merged. เราก็ต้อง -D แทน -d เพื่อเป็นการ force delete error: The branch ‘xxxxxx’ is not fully merged. References: How to Delete a Git Branch Both Locally and Remotely