Chuyển đến nội dung chính

Git migrate git to another git server

Migrate git from bitbucket to gitlab host on your server or other git server.


Step 1: Clone all branches
git clone --mirror <URL to my OLD repo location>
cd <New directory where your OLD repo was cloned>

Step 2: Create new empty repo

Step 3: Change origin url
git remote set-url origin <URL to my NEW repo location>

Step 4: Push all code to new git server

git push -f origin


Git command to update current account to correct account with new git server

git config user.email “[new email]”: Đổi email
git config user.email -> Xem email hiện tại
git config —global user.email: Xem thông tin email global
git config —global user.email “[new email]”: Đổi email áp dụng global

git config user.name “[new name]”: Đổi tên
git config user.name -> Xem tên hiện tại

Change user and origin url in Android Studio with new origin url:

http(s)://[username]@domain/repo.git

Nhận xét

Bài đăng phổ biến từ blog này

Ôn thi !!

Lâu rồi không có cái cảm giác ngồi học đêm tính tính toán toán, ngồi học lại nhớ lại những năm đầu học những môn đại cương phải tính toán nhiều. Giờ thì mình cũng đang học 1 môn đại cương, hix chiều mai thi rồi. Dự định học bao nhiêu mà toàn lười cứ ngồi vào bàn là lại buồn ngủ Nay thì không thể nào mà buồn ngủ được. Lại cộng với đi xem bóng đá làm ly cafe chắc nay thức đến sáng luôn. Có lẽ tầm này là tầm học vào nhất, đọc đâu hiểu luôn không như lúc tối đọc mà chẳng hiểu gì. Cố lên, mai thi xong lại được xả hơi. Thi xong phải đi lên hồ gươm xem mới được. Dạo này cứ lấy cái cớ ngồi học để chẳng đi đâu cả. Nhiều khi cũng bị stress vì mãi mà chằng học được tý gì.Thôi học tiếp nào .....

Change Timezone in CentOS | Thay đổi múi giờ trong CentOS

Timezone of VietNam is Asia/Ho_Chi_Minh. To change default timezone in centos, follow this struction.   mv /etc/localtime /etc/localtime.bak ln -s /usr/share/zoneinfo/Asia/Ho_Chi_Minh /etc/localtime Type date in terminal and you will see time in Viet Nam In Linux, the system time zone is determined by the symbolic link /etc/localtime . This link points to a time zone data file that describes the local time zone. The time zone data files are located at either /usr/lib/zoneinfo or /usr/share/zoneinfo depending on what distribution of Linux you use. For example, on a SuSE system located in New Jersey the /etc/localtime link would point to /usr/share/zoneinfo/US/Eastern . On a Debian system the /etc/localtime link would point to /usr/lib/zoneinfo/US/Eastern . If you fail to find the zoneinfo directory in either the /usr/lib or /usr/share directories, either do a find /usr -print | grep zoneinfo or consult your distribution's do...

Xcode 8 support devices ios 7

Tải XCode 5.1.1 về, copy 2 folder 7.0 & 7.1 trong thư mục /Volumes/Xcode/ Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport sang thư mục DeviceSupport của phiên bản XCode 8 (hiện tại) Mở file SDKSetting.plist trong thư mục /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk Thêm giá trị 7.0 & 7.1 vào key Root->DefaultProperties->DEPLOYMENT_TARGET_SUGGESTED_VALUE Thoát XCode & khởi động lại XCode