+## Git Import From Remote
+```bash
+git clone git://lifelog.hopto.org/PerlCNFWEBServer
+```
+ - Modify .git/config to enable to git push.
+```
+[core]
+ repositoryformatversion = 0
+ filemode = true
+ bare = false
+ logallrefupdates = true
+[remote "origin"]
+ url = {user_name_on_server_that_is_in_the_git_group}@lifelog.hopto.org:/srv/git/wb-docs
+ fetch = +refs/heads/*:refs/remotes/origin/*
+[branch "master"]
+ remote = origin
+ merge = refs/heads/master
+
+```
+ - {The user_name_on_server_that_is_in_the_git_group} would be for our example **dev_user** created at the beginning of this document.
+<p style="text-align:right;">
+<strong> Jump to </strong> [ <a href="#adding-with-shell-access-as-remote"> Add User</a> ] |
+ [<a href="#git-installation-for-developers-steps"> Top of Page</a> ]
+</p>