Recommended GitLab Client for Windows


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Recommended GitLab Client for Windows
# 1  
Old 06-30-2014
Recommended GitLab Client for Windows

Hi

what's the recommended GitLab (not public GitHub) Client for Windows?

GitLab | Open source software to collaborate on code https://about.gitlab.com/

I read that you can configure GitHub for Windows for using internal GitLab Server. How?

git - Does GitHub for Windows work with GitLab? - Stack Overflow

Or are there better clients?
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. IP Networking

Unable to SSH from Windows client to Ubuntu Server

I'm trying to setup a small home network environment as a pet project. These are physical machines nothing virtual. Any help or ideas is greatly appreciated. I can ping between both machines and I have Samba established and can read/write different shares. When I try to SSH from Windows 8.1... (10 Replies)
Discussion started by: lombardi4851
10 Replies

2. AIX

ssh login from windows client

I am a new user and i wish to connect to a unix(AIX) server from a windows client using ssh.A detailed solution would be highly appreciated. (1 Reply)
Discussion started by: ajayb3004
1 Replies

3. Programming

UDP linux client and Windows server

Hi, I have a situation where i need to communicate a linux client with a windows server, I am using a UDP socket communication channel. I am able to send packets from my linux clients to the windows server but unable to receive any data packet from the server. Do i need to make any setting in... (0 Replies)
Discussion started by: John20
0 Replies

4. Windows & DOS: Issues & Discussions

ssh: sending password from windows client

Hi. My workstation is Windows. I use putty to connect to unix servers. The problem is that i'm doing it many times a day and each time i need to supply password. I have no control on ssh configuration on servers, because of account restrictions. So i can't use key authentication, how is suggested... (4 Replies)
Discussion started by: kukuruku
4 Replies

5. Windows & DOS: Issues & Discussions

ssh client and Windows remote Desktop

Dear All , I want to Access my office computer form the home. The enviourment is like the following : 1- From my home I connect for the office via VPN connection to Unix server lets say it's IP is 11.11.11.11 and till now every thing is OK and I can access the machine normally . 2- In my... (3 Replies)
Discussion started by: habuzahra
3 Replies

6. UNIX for Advanced & Expert Users

Windows machine with NFS-Client

Hi all expert, can anybody know how to export windows user home directory on NFS server so user can access there files from windows as well as Linux. In short configure windows machine with an NFS client is there any third party software & how 2 configure it . Any idea. Thanks in... (1 Reply)
Discussion started by: jagnikam
1 Replies

7. UNIX for Advanced & Expert Users

a question on CIFS on windows client.

Hi, this might be a little off-topic (since it involves windows) 1) I mounted a volume using cifs on windows. That volume has a symbolic link (which was created using a solaris client) Is there anyway to know from my windows client that a particular file is actually a symbolic link ?? 2) The... (1 Reply)
Discussion started by: the_learner
1 Replies

8. Windows & DOS: Issues & Discussions

ntp client windows xp

All, I have a Windows XP client which I need to get time synchronized from a Linux ntp server. What are the commands to perform the setup and configuration? Thanks, Mike (1 Reply)
Discussion started by: bubba112557
1 Replies

9. Programming

Windows Client Vs Unix Server?

i have written a TCP client server application in c under unix. The windows systems should also be alowed to connect to the TCP server running on linux.So i wrote a small client application in VB using winsock. The client and server works fine in the linux environment. When i tried to connect the... (0 Replies)
Discussion started by: collins
0 Replies

10. UNIX for Dummies Questions & Answers

X-Client for Windows?

I managed it to install Solaris8 on an Intel-Engine. I want to use it as a Test-Server. It would be great if i could get now a free X-Client for Windows, with which i can logon to from my Main-Computer (NT4) to the Solaris8.Station. What is to do? Do somebody know Software for this? Please... (4 Replies)
Discussion started by: cyberbloodgoat
4 Replies
Login or Register to Ask a Question
Net::GitHub::V2(3pm)					User Contributed Perl Documentation				      Net::GitHub::V2(3pm)

NAME
Net::GitHub::V2 - Perl Interface for github.com (V2) SYNOPSIS
Prefer: use Net::GitHub; my $github = Net::GitHub->new( version => 2, # optional, default as 2 owner => 'fayland', repo => 'perl-net-github' ); Or: use Net::GitHub::V2; # for http://github.com/fayland/perl-net-github/tree/master my $github = Net::GitHub::V2->new( owner => 'fayland', repo => 'perl-net-github' ); DESCRIPTION
NOTE: Github will terminate API v1 and API v2 on May 1st, 2012 <http://develop.github.com/> For those (authentication required), you must set login and token (in <https://github.com/account>). If no login and token are provided, your .gitconfig will be loaded: if the github.user and github.token keys are defined, they will be used. my $github = Net::GitHub::V2->new( owner => 'fayland', repo => 'perl-net-github', login => 'fayland', token => '54b5197d7f92f52abc5c7149b313cf51', # faked ); If you want to work with private repo, you can set always_Authorization. To disable call rate limiting (e.g. if your account is whitelisted), set api_throttle to 0. By default, error responses are propagated to the user as they are received from the API. By switching throw_errors on you can make the be turned into exceptions instead, so that you don't have to check for error response after every call. my $github = Net::GitHub::V2->new( owner => 'fayland', repo => 'perl-net-github', login => 'fayland', token => '54b5197d7f92f52abc5c7149b313cf51', # faked always_Authorization => 1, api_throttle => 0, throw_errors => 0, ); METHODS
repos $github->repos->create( 'sandbox3', 'Sandbox desc', 'http://fayland.org/', 1 ); $github->repos->show(); Net::GitHub::V2::Repositories user my $followers = $github->user->followers(); $github->user->update( name => 'Fayland Lam' ); Net::GitHub::V2::Users commit my $commits = $github->commit->branch(); my $commits = $github->commit->file( 'master', 'lib/Net/GitHub.pm' ); my $co_detail = $github->commit->show( $sha1 ); Net::GitHub::V2::Commits issue my $issues = $github->issue->list('open'); my $issue = $github->issue->open( 'Bug title', 'Bug detail' ); $github->issue->close( $number ); Net::GitHub::V2::Issues object my $tree = $github->obj_tree( $tree_sha1 ); # alias object->tree my $blob = $github->obj_blob( $tree_sha1, 'lib/Net/GitHub.pm' ); # alias object->blob my $raw = $github->obj_raw( $sha1 ); # alias object->raw Net::GitHub::V2::Object network $github->network_meta; # alias ->network->network_meta $github->network_data_chunk( $net_hash ); # alias network->network_data_chunk Net::GitHub::V2::Network organization my $organization = $github->organization->organizations('github'); my $teams = $github->organization->teams('PerlChina'); Net::GitHub::V2::Organizations pull_request my $pull = $github->pull_request->pull_request(); Net::GitHub::V2::PullRequest SEE ALSO
Any::Moose AUTHOR
Fayland Lam, "<fayland at gmail.com>" More on Changes COPYRIGHT &; LICENSE Copyright 2009-2011 Fayland Lam, all rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.14.2 2012-03-30 Net::GitHub::V2(3pm)