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

Bài đăng

Đang hiển thị bài đăng từ Tháng 4, 2018

Một số lệnh trong Git

Một số lệnh thường dùng trong GIT Tạo mới và thêm code  Thêm mới Clone 1 project về: git clone /<repository-path>/repository/ Trường hợp bạn cần kết nối tới Repository: git remote add origin <git-remote-url> tạo một nhánh mới và đặt tên là "feature_x" và chuyển qua nhánh đó (từ master) bằng cách git checkout -b feature_x Trở lại nhánh master git checkout master và xóa nhánh feature_x đó lần nửa git branch -d feature_x Commit và push code mới lên git init git add . git commit -m "Initial commit" git remote add origin https://YOURPROJECT.visualstudio.com/_git/ git push -u origin --all

Cài đặt Service Bus Explorer

Bạn vào trang https://github.com/paolosalvatori/ServiceBusExplorer/blob/develop/docs/documentation.md để xem hướng dẫn cài đặt. Hoặc bạn có thể làm theo cách sau: Cài đặt Chocolatey Vào trang: https://chocolatey.org/install#installing-chocolate Bạn copy dòng lệnh @"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin" Mở cmd lên bằng chế độ Administrator, sau đó thực hiện dòng lệnh đã copy để cài đặt Chocolately. Thực hiện dòng lệnh sau để cài đặt Service Bus Explorer chocolatey install ServiceBusExplorer Khởi động Service Bus Explorer Trong command line, gõ ServiceBusExplorer, nhấn Enter. Đợi trong giây lát, Azure Service Bus sẽ được mở. Chúc các bạn thành công