معرفی سیستم یکپارچه‌ی Space از JetBrains
200, OK
https://blog.jetbrains.com/blog/2019/12/05/welcome-to-space/ icon

Space is an integrated team environment that provides teams and organizations with the tools they need to collaborate effectively and efficiently. It has Git-based Version Control, Code Review, Automation (CI/CD) based on Kotlin Scripting, Package Repositories, Planning tools, Issue Tracker, Chats, Blogs, Meetings, and Team Directory, among other features.  

معرفی سیستم یکپارچه‌ی Space از JetBrains
کار با Api های Git در NET. توسط کتابخانه LibGit2Sharp
200, OK
https://github.com/libgit2/libgit2sharp icon

Git + .NET/Mono = ❤  http://libgit2.github.com

LibGit2Sharp brings all the might and speed of libgit2, a native Git implementation, to the managed world of .NET and Mono. 


$ git init /d/temp/rooted/path
string rootedPath = Repository.Init(@"D:\temp\rooted\path");
Console.WriteLine(rootedPath);

$ git add --all .
using (var repo = new Repository("path/to/your/repo"))
{
    Commands.Stage(repo, "*");
}

$ git checkout <branch>
using (var repo = new Repository("path/to/your/repo"))
{
    var branch = repo .Branches[branchName];
    Branch currentBranch = Commands.Checkout(repo , branch);
}
کار با Api های Git در NET. توسط کتابخانه LibGit2Sharp
روش مهاجرت از گیت‌هاب به هرجا
200, OK
https://blog.alihoseiny.ir/%D9%85%D9%87%D8%A7%D8%AC%D8%B1%D8%AA-%D8%A8%D8%AF%D9%88%D9%86-%D8%AF%D8%B1%D8%AF-%D9%88-%D8%AE%D9%88%D9%86%D8%B1%DB%8C%D8%B2%DB%8C-%D8%A7%D8%B2-%DA%AF%DB%8C%D8%AA%E2%80%8C%D9%87%D8%A7%D8%A8-%D8%A8%D9%87-%D9%87%D8%B1%D8%AC%D8%A7/ icon
«... چطوری بدون از دست دادن تاریخچه‌ی عملکرد گیتمان آن را به جای دیگری منتقل کنیم؟ این سؤالی است که الان همه‌ی ما داریم. من در اینجا دو روش را برای این انتقال به شما نشان می‌دهم ...» 
روش مهاجرت از گیت‌هاب به هرجا