-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGit-wrapper-C---working-with-Git-repository-from-your-own-application.html
More file actions
57 lines (45 loc) · 2.57 KB
/
Git-wrapper-C---working-with-Git-repository-from-your-own-application.html
File metadata and controls
57 lines (45 loc) · 2.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>Git wrapper C# - working with Git repository from your own application</title>
<meta name="twitter:title" property="og:title" content="Git wrapper C# - working with Git repository from your own application">
<meta name="twitter:description" property="og:description">
<meta property="og:url" content="https://docsroot.github.io/Git-wrapper-C---working-with-Git-repository-from-your-own-application.html">
<meta property="og:type" content="website">
<meta property="og:site_name" content="DocsRoot">
<meta name="author" content="hu****hd@gmail.com" />
<meta name="creator" content="docsroot" />
<style type="text/css">
blockquote {
border-left: 5px solid green;
margin: 10px;
padding: 10px;
}
img {
max-width: 100%;
height: auto;
}
footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
background-color: #DDD;
text-align: center;
height: 22px;
line-height: 22px;
}
</style>
</head>
<body>
<!--Heading of the page-->
<h1>Git wrapper C# - working with Git repository from your own application</h1>
<!--The body part: what you put into RTE-->
<p>I have been searching for a package that help to work with Git repository (index new / updated / deleted files, commit the changes, push to a remote repository) but not having one that works as expected.</p><p><u><i>Libgit2Sharp</i></u> is nice without the need of Git installed but actually it does not work on my server even development is all good.</p><p>So I decided to use git command line interface directly - of course via a wrapper. It's simple but provide what I need on both dev and integration servers. Below is some simple methods:</p><p><br></p><p><b><u><i>References:</i></u></b></p><ol><li><a href="https://github.com/netvietdev/GitCliWrap" target="_blank">Source code repository</a> on Github</li></ol>
<footer>
Created by <a href="http://docsroot.devcovery.com/Listing/ViewByAuthor?author=1" target="_blank">hu****hd@gmail.com</a>. Last modified 12/11/2018 11:28:02 AM. View online <a href="https://docsroot.github.io/Git-wrapper-C---working-with-Git-repository-from-your-own-application.html" target="_blank">here</a>. Built with ♥ by <a href="http://docsroot.devcovery.com" target="_blank">docsroot</a>
</footer>
</body>
</html>